home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / komunikace / apache / apache_2[1].2.2-win32-x86-no_ssl.msi / Data1.cab / _6AAEB6EA5CBA23E7E1F65DB5707ABF26 (.txt) < prev    next >
LaTeX Document  |  2006-04-21  |  8KB  |  171 lines

  1. <?xml version="1.0"?>
  2.  Copyright 2003-2005 The Apache Software Foundation or its licensors, as
  3.  applicable.
  4.  Licensed under the Apache License, Version 2.0 (the "License");
  5.  you may not use this file except in compliance with the License.
  6.  You may obtain a copy of the License at
  7.      http://www.apache.org/licenses/LICENSE-2.0
  8.  Unless required by applicable law or agreed to in writing, software
  9.  distributed under the License is distributed on an "AS IS" BASIS,
  10.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11.  See the License for the specific language governing permissions and
  12.  limitations under the License.
  13. <xsl:stylesheet version="1.0"
  14.               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  15.                   xmlns="http://www.w3.org/1999/xhtml">
  16. <!-- ==================================================================== -->
  17. <!-- <moduleindex>                                                        -->
  18. <!-- Builds the moduleindex page                                          -->
  19. <!-- ==================================================================== -->
  20. <xsl:template match="moduleindex">
  21.   <xsl:variable name="metafile" select="document(/*/@metafile)/metafile" /> 
  22.   <xsl:call-template name="section-title"/>
  23.   <xsl:apply-templates select="summary"/>
  24.   <xsl:call-template name="seealso"/>
  25.    <xsl:text>\subsection*{</xsl:text>
  26.    <xsl:value-of select="$message[@id='corefeatures']" />
  27.    <xsl:text>}
  28. \begin{description}
  29. \item[</xsl:text>
  30.     <xsl:apply-templates select="document(document($allmodules)/modulefilelist/modulefile
  31.                               [starts-with(., 'core.xml')])
  32.                               /modulesynopsis/name"/>
  33.     <xsl:text>] (p.\ \pageref{/mod/</xsl:text>
  34.     <xsl:value-of select="document(document($allmodules)/modulefilelist/modulefile
  35.                               [starts-with(., 'core.xml')])
  36.                               /modulesynopsis/name"/>
  37.     <xsl:text>}) </xsl:text>
  38.     <xsl:apply-templates select="document(document($allmodules)/modulefilelist/modulefile
  39.                                  [starts-with(., 'core.xml')])
  40.                                  /modulesynopsis/description" />
  41.     <xsl:text>
  42. \item[</xsl:text>
  43.     <xsl:apply-templates  select="document(document($allmodules)/modulefilelist/modulefile
  44.                                   [starts-with(., 'mpm_common.xml')])
  45.                                   /modulesynopsis/name" />
  46.     <xsl:text>] (p.\ \pageref{/mod/</xsl:text>
  47.     <xsl:value-of select="document(document($allmodules)/modulefilelist/modulefile
  48.                                    [starts-with(., 'mpm_common.xml')])
  49.                                    /modulesynopsis/name"/>
  50.     <xsl:text>}) </xsl:text>
  51.     <xsl:apply-templates select="document(document($allmodules)/modulefilelist/modulefile
  52.                                          [starts-with(., 'mpm_common.xml')])
  53.                                          /modulesynopsis/description" />
  54.     <!-- and now the remaining MPMs -->
  55.     <xsl:variable name="mpmmodules"
  56.          select="document(document($allmodules)/modulefilelist/modulefile)
  57.                  /modulesynopsis[status='MPM' and name != 'mpm_common']" />
  58.     <xsl:variable name="translist">
  59.       <xsl:call-template name="module-translist">
  60.          <xsl:with-param name="modules" select="$mpmmodules" />
  61.       </xsl:call-template>
  62.     </xsl:variable>
  63.     <xsl:for-each select="$mpmmodules">
  64.       <xsl:sort select="substring-before(substring-after($translist,
  65.                   concat('- ', translate(normalize-space(name), $lowercase,
  66.                   $uppercase), ' ')), ' -')" />
  67.       <xsl:text>
  68. \item[</xsl:text>
  69.       <xsl:apply-templates select="name"/>
  70.       <xsl:text>] (p.\ \pageref{/mod/</xsl:text>
  71.       <xsl:value-of select="name"/>
  72.       <xsl:text>}) </xsl:text>
  73.       <xsl:apply-templates select="description" />
  74.     </xsl:for-each>
  75.     <xsl:text>\end{description}
  76. </xsl:text>
  77.     <!-- /core section -->
  78.     <xsl:text>\section*{</xsl:text>
  79.     <xsl:value-of select="$message[@id='othermodules']" />
  80.     <xsl:text>}
  81. \begin{description}
  82. </xsl:text>
  83.             
  84.     <xsl:variable name="modules"
  85.          select="document(document($allmodules)/modulefilelist/modulefile)
  86.                  /modulesynopsis[status!='MPM' and status!='Core']" />
  87.     <xsl:call-template name="mindex-of-letter">
  88.        <xsl:with-param name="modules" select="$modules" />
  89.     </xsl:call-template>
  90.     <xsl:text>\end{description}
  91. </xsl:text>
  92. </xsl:template> 
  93. <!-- /moduleindex -->
  94. <!-- ==================================================================== -->
  95. <!-- the working horse. builds list items of all modules starting with    -->
  96. <!-- one letter when done, it calls itself to catch the next letter       -->
  97. <!-- ==================================================================== -->
  98. <xsl:template name="mindex-of-letter">
  99. <xsl:param name="modules"/>
  100. <xsl:variable name="translist">
  101.     <xsl:call-template name="module-translist">
  102.         <xsl:with-param name="modules" select="$modules" />
  103.     </xsl:call-template>
  104. </xsl:variable>
  105. <xsl:for-each select="$modules">
  106. <xsl:sort
  107.     select="substring-before(substring-after($translist, concat('- ',
  108.         translate(normalize-space(name),$lowercase,$uppercase), ' ')), ' -')" />
  109. <xsl:text>
  110. \item[</xsl:text>
  111. <xsl:apply-templates select="name"/>
  112. <xsl:text>] (p.\ \pageref{/mod/</xsl:text>
  113. <xsl:value-of select="name"/>
  114. <xsl:text>}) </xsl:text>
  115.         <xsl:apply-templates select="description" />
  116. </xsl:for-each> <!-- /directives -->
  117. </xsl:template>
  118. <!-- /mindex-of-letter -->
  119. <!-- ==================================================================== -->
  120. <!-- define module name translations for sorting                          -->
  121. <!--                                                                      -->
  122. <!-- it's a kind of a hack...                                             -->
  123. <!-- we build a string that contains the following data:                  -->
  124. <!-- "- modulename sortname - modulename sortname - ..."                  -->
  125. <!-- (with all data in uppercase)                                         -->
  126. <!--                                                                      -->
  127. <!-- So, the translation from modulename to sortname can be done with the -->
  128. <!-- expression below:                                                    -->
  129.        substring-before(
  130.            substring-after($translist, 
  131.                            concat('- ', translate(modulename,
  132.                                                   $lowercase, $uppercase),
  133.                                   ' ')
  134.                            ),
  135.            ' -')
  136.                                                                           -->
  137. <!-- ==================================================================== -->
  138. <xsl:template name="module-translist">
  139. <xsl:param name="modules" />
  140. <xsl:text>-</xsl:text>
  141. <xsl:for-each select="$modules">
  142.     <xsl:variable name="sname" select="translate(normalize-space(name),
  143.                                        $lowercase, $uppercase)" />
  144.     <xsl:text> </xsl:text>
  145.     <xsl:value-of select="$sname" />
  146.     <xsl:text> </xsl:text>
  147.     <xsl:call-template name="module-translatename">
  148.         <xsl:with-param name="name" select="$sname" />
  149.     </xsl:call-template>
  150.     <xsl:text> -</xsl:text>
  151. </xsl:for-each>
  152. </xsl:template>
  153. <!-- /module-translist -->
  154. <xsl:template name="module-translatename">
  155. <xsl:param name="name" />
  156. <xsl:variable name="sname" select="translate($name, $lowercase, $uppercase)" />
  157. <xsl:choose>
  158. <xsl:when test="starts-with($sname, 'MOD_') or starts-with($sname, 'MPM_')">
  159.     <xsl:value-of select="substring($name, 5)" />
  160. </xsl:when>
  161. <xsl:when test="starts-with($sname, 'MPMT_')">
  162.     <xsl:value-of select="substring($name, 6)" />
  163. </xsl:when>
  164. <xsl:otherwise>
  165.     <xsl:value-of select="$name" />
  166. </xsl:otherwise>
  167. </xsl:choose>
  168. </xsl:template>
  169. <!-- /module-translatename -->
  170. </xsl:stylesheet>
  171.